home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / _gs / !GS / c / ZMISC < prev    next >
Text File  |  1991-10-25  |  6KB  |  237 lines

  1. /* Copyright (C) 1989, 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* zmisc.c */
  21. /* Miscellaneous operators for Ghostscript */
  22. #include "string_.h"
  23. #include "ghost.h"
  24. #include "gp.h"
  25. #include "memory_.h"
  26. #include "errors.h"
  27. #include "oper.h"
  28. #include "alloc.h"
  29. #include "dict.h"
  30. #include "name.h"
  31. #include "packed.h"
  32. #include "store.h"
  33. #include "gxfixed.h"            /* for gstype1.h */
  34. #include "gstype1.h"
  35.  
  36. /* Import the dictionary stack pointer (for bind) */
  37. extern ref *dsp;
  38.  
  39. /* Import the C getenv function */
  40. extern char *getenv(P1(char *));
  41.  
  42. /* bind */
  43. int
  44. zbind(register os_ptr op)
  45. {    os_ptr bsp = op;            /* bottom of stack */
  46.     ref *defp = op;
  47.     switch ( r_type(op) )
  48.        {
  49.     case t_array:
  50.     case t_mixedarray:
  51.     case t_shortarray:
  52.         break;
  53.     case t_oparray:
  54.         defp = &op_array_table.value.refs[op_index(op) - op_def_count];
  55.         break;
  56.     default:
  57.         return e_typecheck;
  58.        }
  59.     ++bsp;
  60.     make_tasv(bsp, t_array, a_all+a_executable, 1, refs, defp);
  61.     /* Here are the invariants for the following loop: */
  62.     /*    op < bsp <= ostop; */
  63.     /*    for every pointer p such that op < p <= bsp, */
  64.     /*      *p is an array (or packedarray) ref. */
  65. #define r_is_ex_oper(rp)\
  66.   ((r_btype(rp) == t_operator || r_type(rp) == t_oparray) &&\
  67.    r_has_attrs(rp, a_executable))
  68.     while ( bsp > op )
  69.        {    while ( r_size(bsp) )
  70.            {    ref *tp = bsp->value.refs;
  71.             r_inc_size(bsp, -1);
  72.             if ( *(ushort *)tp > packed_max_full_ref )
  73.              { /* Check for a packed executable name */
  74.                ushort elt = *(ushort *)tp;
  75.                if ( (elt & ~packed_max_name_index) ==
  76.                 pt_tag(pt_executable_name) )
  77.                 { ref nref;
  78.                   ref *pvalue;
  79.                   name_index_ref(elt & packed_max_name_index,
  80.                          &nref);
  81.                   if ( dict_lookup(dstack, dsp, &nref, &pvalue) > 0 &&
  82.                    r_is_ex_oper(pvalue)
  83.                  )
  84.                 /* Note: can't undo this by restore! */
  85.                 *(ushort *)tp =
  86.                   pt_tag(pt_executable_operator) +
  87.                   op_index(pvalue);
  88.                 }
  89.                bsp->value.refs = (ref *)((ushort *)tp + 1);
  90.              }
  91.             else
  92.               switch ( bsp->value.refs++, r_type(tp) )
  93.              {
  94.             case t_name:    /* bind the name if an operator */
  95.               if ( r_has_attrs(tp, a_executable) )
  96.                {    ref *pvalue;
  97.                 if ( dict_lookup(dstack, dsp, tp, &pvalue) > 0 &&
  98.                      r_is_ex_oper(pvalue)
  99.                    )
  100.                     ref_assign_old(tp, pvalue, "bind");
  101.                }
  102.               break;
  103.             case t_array:    /* push into array if procedure */
  104.               if ( !r_has_attrs(tp, a_write) ) break;
  105.             case t_mixedarray:
  106.             case t_shortarray:
  107.               if ( r_has_attrs(tp, a_executable) && bsp < ostop )
  108.                {    /* Make reference read-only */
  109.                 r_clear_attrs(tp, a_write);
  110.                 *++bsp = *tp;
  111.                }
  112.              }
  113.            }
  114.         bsp--;
  115.        }
  116.     return 0;
  117. }
  118.  
  119. /* currenttime */
  120. int
  121. zcurrenttime(register os_ptr op)
  122. {    long date_time[2];
  123.     gp_get_clock(date_time);
  124.     push(1);
  125.     make_real(op, date_time[0] * 1440.0 + date_time[1] / 60000.0);
  126.     return 0;
  127. }
  128.  
  129. /* getenv */
  130. int
  131. zgetenv(register os_ptr op)
  132. {    char *str, *value;
  133.     int code;
  134.     check_read_type(*op, t_string);
  135.     str = ref_to_string(op, "getenv name");
  136.     if ( str == 0 ) return e_VMerror;
  137.     value = getenv(str);
  138.     alloc_free(str, r_size(op) + 1, 1, "getenv name");
  139.     if ( value == 0 )        /* not found */
  140.        {    make_bool(op, 0);
  141.         return 0;
  142.        }
  143.     code = string_to_ref(value, op, "getenv value");
  144.     if ( code < 0 ) return code;
  145.     push(1);
  146.     make_bool(op, 1);
  147.     return 0;
  148. }
  149.  
  150. /* makeoperator */
  151. int
  152. zmakeoperator(register os_ptr op)
  153. {    check_type(op[-1], t_name);
  154.     check_proc(*op);
  155.     if ( op_array_count == r_size(&op_array_table) )
  156.         return e_limitcheck;
  157.     ref_assign_old(&op_array_table.value.refs[op_array_count],
  158.                op, "makeoperator");
  159.     op_array_nx_table[op_array_count] = name_index(op - 1);
  160.     r_set_type_attrs(op - 1, t_oparray, a_executable);
  161.     r_set_size(op - 1, op_def_count + op_array_count);
  162.     op_array_count++;
  163.     pop(1);
  164.     return 0;
  165. }
  166.  
  167. /* setdebug */
  168. int
  169. zsetdebug(register os_ptr op)
  170. {    check_read_type(op[-1], t_string);
  171.     check_type(*op, t_boolean);
  172. #ifdef DEBUG
  173.        {    int i;
  174.         for ( i = 0; i < r_size(op - 1); i++ )
  175.             gs_debug[op[-1].value.bytes[i] & 127] =
  176.                 op->value.index;
  177.        }
  178. #endif
  179.     pop(2);
  180.     return 0;
  181. }
  182.  
  183. /* type1encrypt, type1decrypt */
  184. private int type1crypt(P2(os_ptr,
  185.               int (*)(P4(byte *, byte *, uint, ushort *))));
  186. int
  187. ztype1encrypt(os_ptr op)
  188. {    return type1crypt(op, gs_type1_encrypt);
  189. }
  190. int
  191. ztype1decrypt(os_ptr op)
  192. {    return type1crypt(op, gs_type1_decrypt);
  193. }
  194. private int
  195. type1crypt(register os_ptr op, int (*proc)(P4(byte *, byte *, uint, ushort *)))
  196. {    crypt_state state;
  197.     check_type(op[-2], t_integer);
  198.     state = op[-2].value.intval;
  199.     if ( op[-2].value.intval != state )
  200.         return e_rangecheck;    /* state value was truncated */
  201.     check_read_type(op[-1], t_string);
  202.     check_write_type(*op, t_string);
  203.     if ( r_size(op) < r_size(op - 1) )
  204.         return e_rangecheck;
  205.     (void) (*proc)(op->value.bytes, op[-1].value.bytes, r_size(op - 1),
  206.                &state);        /* can't fail */
  207.     op[-2].value.intval = state;
  208.     op[-1] = *op;
  209.     r_set_subrange_size(op - 1, r_size(op));
  210.     pop(1);
  211.     return 0;
  212. }
  213.  
  214. /* usertime */
  215. int
  216. zusertime(register os_ptr op)
  217. {    long date_time[2];
  218.     gp_get_clock(date_time);
  219.     push(1);
  220.     make_int(op, date_time[0] * 86400000L + date_time[1]);
  221.     return 0;
  222. }
  223.  
  224. /* ------ Initialization procedure ------ */
  225.  
  226. op_def zmisc_op_defs[] = {
  227.     {"1bind", zbind},
  228.     {"0currenttime", zcurrenttime},
  229.     {"1getenv", zgetenv},
  230.     {"2makeoperator", zmakeoperator},
  231.     {"2setdebug", zsetdebug},
  232.     {"3type1encrypt", ztype1encrypt},
  233.     {"3type1decrypt", ztype1decrypt},
  234.     {"0usertime", zusertime},
  235.     op_def_end(0)
  236. };
  237.